home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-11-01 | 2.5 KB | 72 lines | [TEXT/MPS ] |
- ;
- ; File: AppleShareMailServerRegistry.a
- ;
- ; Contains: Attributes stored by the ASIP Mail Server in the Registry.
- ;
- ; Version: Technology: AppleShare IP 6.0
- ; Release: ASIP 6.2 SDK - Saturday, September 4, 1999 15:05:49
- ;
- ; Copyright: © 1996-1999 by Apple Computer, Inc., all rights reserved.
- ;
- ; Bugs?: For bug reports, consult the following page on
- ; the World Wide Web:
- ;
- ; http://developer.apple.com/bugreporter/
- ;
- ;
- IF &TYPE('__APPLESHAREMAILSERVERREGISTRY__') = 'UNDEFINED' THEN
- __APPLESHAREMAILSERVERREGISTRY__ SET 1
-
- IF &TYPE('__APPLESHAREREGISTRY__') = 'UNDEFINED' THEN
- include 'AppleShareRegistry.a'
- ENDIF
-
-
- ; *********
- ; Constants
- ; *********
-
-
- ; Signature, type...
-
- kMUMailServerSignature EQU 'mail'
- kMU60Attributes EQU 'mU60' ; MailUser 6.0
- kMUHomeServer EQU 'mUhs' ; Home server record
-
- kMUHomeServerTag EQU 'Acct'
- ; ASDSharedAttributeConstants
-
- kMUMaxSMTPForwardLength EQU 255
- kMUFingerprintLength EQU 16
-
- ; ***************
- ; User Attributes
- ; ***************
-
-
-
- ; ASDMailUserFlags
-
- KMUUserEnableMask EQU $0000000F
- kMUAPOPRequired EQU $00000004 ; User must use APOP to authenticate
- kMUForwardingMask EQU $000000F0 ; Mask to get forwarding options
- kMUNoForwarding EQU $00000010 ; enabled mail...this bit should be set..
- kMUForwardSMTP EQU $00000020 ; Forward mail to SMTP address
- kMUForwardATalk EQU $00000040 ; Forward mail to AppleTalk SMTP server
- ; 6.0 flag additions
- kMUIMAPPOPFlagsMask EQU $00000F00
- kMUPOPEnabled EQU $00000100 ; User can connect over POP3 or PASS
- kMUIMAPEnabled EQU $00000200 ; User can connect over IMAP or PASS
- kMUNotificationMask EQU $0000F000
- kMUNotificationON EQU $00001000 ; User wants mail notification
- kMUUseLastIPAddr EQU $00002000 ; Use last IP Address for notification - notifyIPAddress is ignored..
- kMUUseSpecificIPAddr EQU $00004000 ; field notifyIPAddress is used...and kMUUseLastIPAddr should cleared..
- kMUSharedBoxFlagMask EQU $000F0000
- kMUSeparatePOPAndIMAP EQU $00010000 ; User can connect over POP3, IMAP or PASS with separate inbox
- kMUShowPOPInIMAP EQU $00020000 ; User can connect over POP3, IMAP or PASS with separate inbox
- ; legacy, do not use beyond 5.0.x versions..
- kMUMailEnabled EQU $00000001 ; Was kMEEnabled in version 1 - ignore, should be zero for 6.0..
- kMULoginEnabled EQU $00000002 ; User can connect over POP3 or PASS - ignore, should be zero for 6.0..
- ENDIF ; __APPLESHAREMAILSERVERREGISTRY__
-
-